home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PACKET / MB1107.ZIP / FBIOS.DOC < prev    next >
Text File  |  1989-06-19  |  1KB  |  57 lines

  1.  
  2.  
  3. FBIOS is a COM port handler that is configured with command line
  4. specifications for interrupt, hardware type, and port addresses.
  5.  
  6. The command line contains groups of specifications delimited by blanks.
  7.  
  8. FBIOS spec1 spec2 spec3 etc.
  9.  
  10. Each specification has several fields, delimited by commas.
  11.  
  12. The first field is a single number giving the IRQ: 2,3,4 or 5
  13.  
  14. The second field is a single letter giving the hardware type:
  15. C - Standard type COM port, no shared interrupt.
  16. Q - QuadRAM Quadport board.
  17. S - Shared interrupt board (modified MS-400)
  18.  
  19. The remaining fields give the COM numbers and associated port addresses.
  20.  
  21.  
  22.  
  23. Some examples.
  24.  
  25. 1. Standard COM1 only
  26.    This creates only COM1
  27.  
  28. FBIOS 4,C,1,3F8
  29.  
  30. 2. Standard COM2 only
  31.    This creates only COM2
  32.  
  33. FBIOS 3,C,2,2F8
  34.  
  35. 3. Standard COM1 and COM2
  36.    This creates COM1 and COM2
  37.  
  38. FBIOS 4,C,1,3F8 3,C,2,2F8
  39.  
  40. 4. Standard COM1 and COM2, with ports reversed.
  41.    This creates COM1 and COM2
  42.  
  43. FBIOS 4,C,2,3F8 3,C,1,2F8
  44.  
  45. 5. COM1 plus Quadport
  46.    This creates COM1 through COM6
  47.  
  48. FBIOS 4,C,1,3F8 3,Q,2,280,3,290,4,2A0,5,2B0,6,2C0
  49.  
  50. 6. MS-400 on IRQ2
  51.    This creates COM3 through COM6
  52.  
  53. FBIOS 2,S,3,3E8,4,3E0,5,2F0,6,2E8
  54.  
  55.  
  56.  
  57.